Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
td-debug
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Darciaux Yoann
td-debug
Commits
08b5f96c
Commit
08b5f96c
authored
1 week ago
by
Darciaux Yoann
Browse files
Options
Downloads
Patches
Plain Diff
Exercice 1
parent
137bed14
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
compte_rendu_debug.txt
+4
-0
4 additions, 0 deletions
compte_rendu_debug.txt
exo1.ts
+8
-0
8 additions, 0 deletions
exo1.ts
with
12 additions
and
0 deletions
compte_rendu_debug.txt
+
4
−
0
View file @
08b5f96c
Exercice 1:
placer point d'arrêt a la ligne 4 puis f5 pour suivre la valeur de j,
dans cette exercice, j'ai appris le débogage avec point d'arrêt ainsi qu'à suivre une variable dans une boucle
This diff is collapsed.
Click to expand it.
exo1.ts
0 → 100644
+
8
−
0
View file @
08b5f96c
function
deb1
():
number
{
let
j
=
200
;
for
(
let
i
=
0
;
i
<
10
;
i
++
)
{
j
-=
10
;
}
return
j
;
}
console
.
log
(
deb1
());
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment